home *** CD-ROM | disk | FTP | other *** search
/ Amiga Developer CD 2.1 / Amiga Developer CD v2.1.iso / Reference / DevCon / Milan_1991 / Devcon91.1 / Libraries / Commodities / IHelp / Makefile < prev    next >
Encoding:
Makefile  |  1992-09-01  |  635 b   |  31 lines

  1. # NATIVE BUILD ONLY
  2.  
  3. SU=lib:c.o
  4. CC=lc
  5. CCF=-csf -v -iinclude: -o
  6. LN=blink
  7. LNF=NODEBUG SMALLCODE SMALLDATA DEFINE __main=__tinymain
  8. LIBS=lib:lc.lib+lib:amiga.lib
  9.  
  10. INC=/common/local.h app.h
  11. OBJ=main.o cx.o window.o app.o ihelp.o
  12.  
  13. ihelp.ld: $(OBJ)
  14.    $(CC) $(CCF)revision.o revision.c
  15.    $(LN) $(LNF) FROM $(SU) $(OBJ) revision.o LIB $(LIBS) TO $@
  16.  
  17. main.o : /common/main.c $(INC)
  18.    $(CC) $(CCF)$@ /common/main.c
  19.  
  20. cx.o : /common/cx.c $(INC)
  21.    $(CC) $(CCF)$@ /common/cx.c
  22.  
  23. window.o : /common/window.c $(INC)
  24.    $(CC) $(CCF)$@ /common/window.c
  25.  
  26. app.o : app.c app.h
  27.    $(CC) $(CCF)$@ app.c
  28.  
  29. ihelp.o : ihelp.c app.h
  30.    $(CC) $(CCF)$@ ihelp.c
  31.